home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / EVISION1.ARJ / HUGEFCTS.HPP < prev    next >
C/C++ Source or Header  |  1992-05-19  |  786b  |  26 lines

  1. #if !defined (HUGEFCTS)                   // To prevent multiple declarations
  2. #define HUGEFCTS
  3.  
  4. // ---- Library Header Files ------------------------------------------------
  5.  
  6. #include <stdio.h>
  7.  
  8.  
  9. // ---- Prototypes ----------------------------------------------------------
  10.  
  11. size_t far hstrlen                          // Returns the length of a string
  12.  
  13. ( char huge *string ) ;                               // Huge ptr to a string
  14.  
  15.  
  16. char huge *hstrcpy                          // Copies one string into another
  17.  
  18. ( char huge *dest,                                       // Destination array
  19.   char huge *src                                             // Source string
  20. ) ;
  21.  
  22.  
  23. // ---- End Header File -----------------------------------------------------
  24.  
  25. #endif
  26.